home *** CD-ROM | disk | FTP | other *** search
/ distrib.akp.su/Programming/Vb-6+Rus/ / distrib.akp.su.tar / distrib.akp.su / Programming / Vb-6+Rus / ! BIBLIOTEKI ! / VBERREAS / Cserrlit.txt < prev    next >
Text File  |  1997-02-22  |  1KB  |  38 lines

  1. Attribute VB_Name = "CSERRLIT"
  2. Option Explicit
  3. ' OK Response Literals
  4. Global Const CS_RESP_OK = 1
  5. Global Const CS_OK_LOW = 11
  6. Global Const CS_OK_HIGH = 21
  7. Global Const CS_OK_FATAL = 50
  8. ' ABORT Response Literals
  9. Global Const CS_RESP_ABORT = 3
  10. Global Const CS_ABORT_LOW = 13
  11. Global Const CS_ABORT_HIGH = 23
  12. ' RETRY Response Literals
  13. Global Const CS_RESP_RETRY = 4
  14. Global Const CS_RETRY_LOW = 14
  15. Global Const CS_RETRY_HIGH = 24
  16. ' IGNORE Response Literals
  17. Global Const CS_RESP_IGNORE = 5
  18. Global Const CS_IGNORE_LOW = 15
  19. Global Const CS_IGNORE_HIGH = 25
  20. ' YES Response Literals
  21. Global Const CS_RESP_YES = 6
  22. Global Const CS_YES_LOW = 16
  23. Global Const CS_YES_HIGH = 26
  24. ' NO Response Literals
  25. Global Const CS_RESP_NO = 7
  26. Global Const CS_NO_LOW = 17
  27. Global Const CS_NO_HIGH = 27
  28. ' Log Only Literal
  29. Global Const CS_LOG_ONLY = 0
  30. ' VB Error Ease Disabled Literal
  31. Global Const CS_DISABLED = -1
  32. ' ErrorTrap Action Argument Literals
  33. Global Const CS_ACTION_IGNORE = 0
  34. Global Const CS_ACTION_DEFAULT = 1
  35. Global Const CS_ACTION_LOGONLY = 2
  36. Global Const CS_ACTION_MESSAGEONLY = 3
  37.  
  38.